home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-08-22 | 1015 b | 35 lines | [TEXT/KAHL] |
- /******************************************************************************
- CAMStaticText.c
-
- The AMStaticText Class
-
- Replaces CStaticText, and gives font/size/style/justification control
- like CAMEditText.
-
- SUPERCLASS = CAMEditText
-
- Copyright © 1991 Bowers Development Corporation. All rights reserved.
-
- ******************************************************************************/
-
- #include "CAMStaticText.h"
-
- /******************************************************************************
- IViewTemp
-
- Initialize an AMStaticText object using a template
- ******************************************************************************/
-
- void CAMStaticText::IViewTemp (CView *anEnclosure,
- CBureaucrat *aSupervisor,
- Ptr viewData)
- {
- register AMStaticTextTempP p;
-
- p = (AMStaticTextTempP) viewData; /* Initialize superclass */
- inherited::IViewTemp (anEnclosure, aSupervisor, (Ptr) &p->sEditTextTemp);
-
- editable = false;
- } /* IViewTemp */
-
- /* CAMStaticText */